home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE05 / PERFORM / UNIT3.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-05-04  |  496 b   |  31 lines

  1. unit Unit3;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TFileNameDialog = class(TForm)
  10.     Bevel1: TBevel;
  11.     OldFile: TLabel;
  12.     OldFileName: TEdit;
  13.     NewFile: TLabel;
  14.     NewFileName: TEdit;
  15.     OKBtn: TBitBtn;
  16.     CancelBtn: TBitBtn;
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   FileNameDialog: TFileNameDialog;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. end.
  31.